home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 August / macformat-040.iso / mac / AMT Tutorial / SOURCES / oShareware_38.k < prev   
Encoding:
Text File  |  1996-06-14  |  1.3 KB  |  74 lines  |  [TEXT/MPS ]

  1. object oShareware_38 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oShareware_screen_38_1,
  7.         oBlack_Box_38_4,
  8.         oShareware_Text_38_2,
  9.         oMenu_Button_38_5
  10.     ];
  11. end;
  12.  
  13.  
  14. object oShareware_screen_38_1 is cPictureHandler
  15. with
  16.     Duration is -1;
  17.     Supplier is oShareware_screen_125_;
  18.     Behavior is cVRBehavior
  19.     has
  20.     with
  21.         Enabled is true; Shown is true; 
  22.         X is 0; Y is 0; Width is 640; Height is 480;
  23.     end;
  24. end;
  25.  
  26.  
  27. object oBlack_Box_38_4 is cPictureHandler
  28. with
  29.     Duration is -1;
  30.     Supplier is oBlack_Box_127_;
  31.     Behavior is cVRBehavior
  32.     has
  33.     with
  34.         Enabled is true; Shown is true; 
  35.         X is 22; Y is 277; Width is 340; Height is 135;
  36.     end;
  37. end;
  38.  
  39.  
  40. object oShareware_Text_38_2 is cTextScrollerHandler
  41. with
  42.     Red is 255; Green is 255; Blue is 255;
  43.     Duration is -1;
  44.     Transparent is false;
  45.     Supplier is oShareware_Text_126_;
  46.     Behavior is cVRBehavior
  47.     has
  48.     with
  49.         Enabled is true; Shown is true; 
  50.         X is 23; Y is 278; Width is 321; Height is 133;
  51.     end;
  52. end;
  53.  
  54.  
  55. object oMenu_Button_38_5 is cPictureHandler
  56. with
  57.     Duration is -1;
  58.     Supplier is oMenu_Button_49_;
  59.     Behavior is cVRBehavior
  60.     has
  61.         MouseUp(theTarget, theX, theY)
  62.             do
  63.                 oBinder.Goto(oMain_Menu_2);
  64.                 oBinder.Refresh();
  65.                 oBinder.SetTransition(oDissolve, 30);
  66.             end;
  67.         
  68.     with
  69.         Enabled is true; Shown is true; 
  70.         X is 519; Y is 431; Width is 90; Height is 39;
  71.     end;
  72. end;
  73.  
  74.